This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Text in body field in email ~Chris Revelusonobu 8.Dec.03 06:17 PM a Web browser Notes Client 6.0.1Windows XP
Here is the code....
Set memo=db.CreateDocument
Dim newitem As notesrichtextitem
With memo
.EncryptOnSend = False
.form ="Memo"
.sendto="abc@cc.com"
.BlindCopyTo = adoc.BlindCopyTo
End With
Set newitem= New notesrichtextitem(memo, "Body")
Set citem = adoc.GetFirstItem("Body")
Call newitem.AppendRTItem( citem )
Call memo.Send(False)